create-vanjs
Version:
🍦 Quick tool for scaffolding your first VanJS project
20 lines (17 loc) • 581 B
JSX
import { A } from "@vanjs/router";
import { Meta, Title } from "@vanjs/meta";
export const Page = () => {
Title("404 Error: Admin Page Not found");
Meta({ name: "description", content: "Admin Page Not Found Description" });
return [
<div class="flex h-screen">
<div class="container mx-auto p-4">
<h1 class="text-5xl my-8">
<span class="font-bold">404</span> / Admin Page Not Found
</h1>
<p class="mb-4">This is the administrator error page</p>
<A href="/admin" class="btn">Dashboard</A>
</div>
</div>,
];
};